@font-face {
  font-family: 'Morabba';
  src: url('../fonts/Morabba/woff2/Morabba-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Morabba';
  src: url('../fonts/Morabba/woff2/Morabba-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Morabba';
  src: url('../fonts/Morabba/woff2/Morabba-Bold.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dana';
  src: url('../fonts/Dana/woff2/DanaFaNum-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dana';
  src: url('../fonts/Dana/woff2/DanaFaNum-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dana';
  src: url('../fonts/Dana/woff2/DanaFaNum-DemiBold.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #06040f;
  --bg-1: #0a0718;
  --bg-2: #0d0a22;
  --violet: #8b5cf6;
  --violet-deep: #6d28d9;
  --cyan: #22d3ee;
  --cyan-deep: #0891b2;
  --text: #ecebff;
  --text-dim: #9892bd;
  --text-faint: rgba(152, 146, 189, 0.35);
  --font-fa: 'Dana', system-ui, sans-serif;
  --font-heading: 'Morabba', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: var(--text);
  font-family: var(--font-fa);
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(120% 120% at 18% 22%, rgba(109, 40, 217, 0.22), transparent 55%),
    radial-gradient(100% 100% at 82% 78%, rgba(8, 145, 178, 0.20), transparent 55%),
    linear-gradient(155deg, var(--bg-0), var(--bg-1) 50%, var(--bg-2));
  background-attachment: fixed;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 90%);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  z-index: 50;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 7s steps(6) infinite;
}

@keyframes grain-shift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-4%, 3%);
  }

  40% {
    transform: translate(3%, -2%);
  }

  60% {
    transform: translate(-2%, -3%);
  }

  80% {
    transform: translate(4%, 2%);
  }
}

/* ===== Glassmorphism ===== */

.glass-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 30px 80px -30px rgba(0, 0, 0, 0.85);
}

.edge-glow {
  position: relative;
}

.edge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--violet), transparent 40%, transparent 60%, var(--cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.edge-glow:hover::after {
  opacity: 1;
}

/* ===== Utilities ===== */

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  letter-spacing: 0.18em;
}

.text-grad {
  background: linear-gradient(120deg, #ffffff 0%, var(--violet) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}

/* ===== Focus grid ===== */

.focus-grid:hover>.focus-item {
  opacity: 0.5;
  filter: saturate(0.7);
}

.focus-grid>.focus-item:hover {
  opacity: 1 !important;
  filter: none !important;
}

.focus-item {
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

/* ===== Glitch ===== */

.glitch {
  position: relative;
}

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

.glitch-host:hover .glitch::before {
  opacity: 0.85;
  color: var(--cyan);
  animation: glitch-a 0.45s steps(2) infinite;
}

.glitch-host:hover .glitch::after {
  opacity: 0.85;
  color: var(--violet);
  animation: glitch-b 0.45s steps(2) infinite;
}

@keyframes glitch-a {
  0% {
    transform: translate(0);
    clip-path: inset(0 0 70% 0);
  }

  50% {
    transform: translate(-2px, 1px);
    clip-path: inset(40% 0 20% 0);
  }

  100% {
    transform: translate(1px, -1px);
    clip-path: inset(10% 0 60% 0);
  }
}

@keyframes glitch-b {
  0% {
    transform: translate(0);
    clip-path: inset(60% 0 10% 0);
  }

  50% {
    transform: translate(2px, -1px);
    clip-path: inset(20% 0 50% 0);
  }

  100% {
    transform: translate(-1px, 1px);
    clip-path: inset(70% 0 5% 0);
  }
}

/* ===== Scrollbar & Selection ===== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet-deep), var(--cyan-deep));
  border-radius: 99px;
  border: 2px solid var(--bg-0);
}

::selection {
  background: rgba(139, 92, 246, 0.35);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== Orbs ===== */

.orbs-container {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.orb-wrapper {
  position: absolute;
  will-change: transform;
}

.orb-1 {
  animation: drift-1 26s ease-in-out infinite;
}

.orb-2 {
  animation: drift-2 32s ease-in-out infinite;
}

.orb-3 {
  animation: drift-3 38s ease-in-out infinite;
}

.orb-4 {
  animation: drift-4 30s ease-in-out infinite;
}

@keyframes drift-1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(-50px, 60px)
  }

  66% {
    transform: translate(30px, -30px)
  }
}

@keyframes drift-2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(60px, -40px)
  }

  66% {
    transform: translate(-20px, 40px)
  }
}

@keyframes drift-3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(-40px, 40px)
  }

  66% {
    transform: translate(50px, -50px)
  }
}

@keyframes drift-4 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(40px, 30px)
  }

  66% {
    transform: translate(-30px, -20px)
  }
}

.orbs-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 30%, transparent 50%, rgba(6, 4, 15, 0.85) 100%);
}

/* ===== Nav ===== */

.nav-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  transform: translateY(-28px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-header.nav-visible {
  transform: translateY(0);
  opacity: 1;
}

.nav-inner {
  display: flex;
  width: 100%;
  max-width: 64rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px !important;
  padding: 0.625rem 0.75rem 0.625rem 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  position: relative;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
}

.nav-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(6px);
  transition: background 0.3s;
}

.nav-logo:hover .nav-logo-glow {
  background: rgba(34, 211, 238, 0.3);
}

.nav-wordmark {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

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

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0718;
  text-decoration: none;
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  box-shadow: 0 8px 30px -8px rgba(139, 92, 246, 0.6);
  transition: transform 0.2s;
}

.nav-cta:hover {
  transform: scale(1.03);
}

.nav-cta:active {
  transform: scale(0.95);
}

/* ===== Hero ===== */

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 7rem 1.25rem 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-dim);
}

@media(min-width:640px) {
  .hero-eyebrow {
    font-size: 1.25rem;
  }
}

.ping-dot {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
}

.ping-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.75;
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-core {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--cyan);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-perspective {
  width: 100%;
  max-width: 48rem;
  perspective: 1200px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem !important;
  padding: 4rem 2rem;
  text-align: center;
  transition: box-shadow 0.5s ease;
  transform-style: preserve-3d;
  cursor: default;
}

@media(min-width:640px) {
  .hero-card {
    padding: 5rem 4rem;
  }
}

.hero-card:hover {
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 35px -8px rgba(139, 92, 246, 0.55), 0 0 55px -16px rgba(34, 211, 238, 0.45), 0 30px 80px -30px rgba(0, 0, 0, 0.85);
}

.hero-sheen {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.hero-headline {
  position: relative;
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

@media(min-width:640px) {
  .hero-headline {
    font-size: 2.9rem;
    line-height: 1.5;
  }
}

.hero-sub {
  position: relative;
  margin: 1.75rem auto 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-dim);
}

.hero-scroll-cue {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem auto 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-scroll-cue:hover {
  color: var(--cyan);
}

.arrow-bounce {
  display: inline-flex;
  animation: arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes arrow-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

/* ===== Meaning ===== */

.meaning-section {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 10rem 1.5rem;
}

@media(min-width:640px) {
  .meaning-section {
    padding: 13rem 1.5rem;
  }
}

.meaning-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
  color: var(--cyan);
}

.meaning-text {
  margin: 0 auto;
  max-width: 56rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media(min-width:640px) {
  .meaning-text {
    font-size: 2.6rem;
    line-height: 1.7;
  }
}

.meaning-word {
  display: inline-block;
}

/* ===== Product ===== */

.product-section {
  position: relative;
  margin: 0 auto;
  max-width: 72rem;
  padding: 1.5rem 1.5rem 6rem;
}

.product-eyebrow {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--cyan);
}

.product-headline {
  font-family: var(--font-heading);
  margin-top: 4rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media(min-width:640px) {
  .product-headline {
    font-size: 2.25rem;
  }
}

.product-grid {
  display: grid;
  gap: 3rem;
}

@media(min-width:1024px) {
  .product-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }

  .product-radar-col {
    position: sticky;
    top: 7rem;
    height: fit-content;
  }
}

.radar-container {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 1;
  width: 100%;
  max-width: 24rem;
}

.radar-glow-bg {
  position: absolute;
  inset: 1.5rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  filter: blur(48px);
}

.radar-svg {
  position: relative;
  width: 100%;
  height: 100%;
}

.radar-ring {
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 0.25
  }

  50% {
    opacity: 0.55
  }
}

.radar-sweep {
  transform-origin: 100px 100px;
  animation: radar-rotate 4s linear infinite;
}

@keyframes radar-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.blip {
  animation: blip-pulse 4s ease-out infinite;
}

@keyframes blip-pulse {
  0% {
    opacity: 0
  }

  25% {
    opacity: 1
  }

  50% {
    opacity: 0.45
  }

  75% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.blip-ring {
  animation: blip-ring-expand 1.6s ease-out infinite;
}

@keyframes blip-ring-expand {
  0% {
    r: 3;
    opacity: 0.9;
  }

  100% {
    r: 12;
    opacity: 0;
  }
}

.radar-alert {
  position: absolute;
  bottom: 0.5rem;
  inset-inline-start: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem !important;
  padding: 0.5rem 0.75rem;
}

.alert-dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ff5e7a;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

.product-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-engine-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media(min-width:640px) {
  .product-engine-card {
    padding: 2.25rem;
  }
}

.product-card-glow {
  pointer-events: none;
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  filter: blur(1.5rem);
}

.product-tag {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--cyan);
}

.product-engine-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

@media(min-width:640px) {
  .product-engine-title {
    font-size: 1.8rem;
  }
}

.product-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.product-step {
  display: flex;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  padding: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.product-step:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(34, 211, 238, 0.7);
  transition: color 0.2s;
  flex-shrink: 0;
}

.product-step:hover .step-num {
  color: var(--cyan);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.step-desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ===== Features ===== */

.features-section {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 1.5rem 1.5rem 7rem;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-tag {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: var(--cyan);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media(min-width:640px) {
  .section-headline {
    font-size: 2.25rem;
  }
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media(min-width:640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem !important;
  padding: 1.75rem;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 35px -8px rgba(139, 92, 246, 0.55), 0 0 55px -16px rgba(34, 211, 238, 0.45), 0 30px 80px -30px rgba(0, 0, 0, 0.85);
}

.feature-bg-glow {
  pointer-events: none;
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  filter: blur(2rem);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover .feature-bg-glow {
  opacity: 1;
}

.feature-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.feature-icon-wrap {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 25px -5px rgba(34, 211, 238, 0.55);
}

.feature-tag {
  font-size: 0.625rem;
  color: var(--text-faint);
  transition: color 0.3s;
}

.feature-card:hover .feature-tag {
  color: rgba(34, 211, 238, 0.6);
}

.feature-title {
  font-family: var(--font-heading);
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-desc {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ===== Pipeline ===== */

.pipeline-section {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 1.5rem 1.5rem 7rem;
}

.pipeline-grid {
  display: grid;
  gap: 1.25rem;
}

@media(min-width:640px) {
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pipeline-card {
  position: relative;
  cursor: not-allowed;
  overflow: hidden;
  border-radius: 1.5rem !important;
  padding: 2rem;
}

.scanline-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background-image: repeating-linear-gradient(0deg, rgba(34, 211, 238, 0.06) 0px, rgba(34, 211, 238, 0.06) 1px, transparent 2px, transparent 4px);
}

.glitch-host:hover .scanline-overlay {
  opacity: 1;
}

.pipeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pipeline-icon-wrap {
  position: relative;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.pipeline-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: rgba(139, 92, 246, 0.1);
  filter: blur(12px);
}

.pipeline-badge {
  border-radius: 9999px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  color: var(--violet);
}

.pipeline-title {
  font-family: var(--font-heading);
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.pipeline-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ===== Contact ===== */

.contact-section {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
  padding: 2.5rem 1.5rem 6rem;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem !important;
  padding: 3.5rem 2rem;
}

@media(min-width:640px) {
  .contact-card {
    padding: 3.5rem 3.5rem;
  }
}

.contact-bg-left {
  pointer-events: none;
  position: absolute;
  left: -5rem;
  top: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  filter: blur(48px);
}

.contact-bg-right {
  pointer-events: none;
  position: absolute;
  right: -4rem;
  bottom: 0;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  filter: blur(48px);
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

@media(min-width:640px) {
  .contact-headline {
    font-size: 2.4rem;
  }
}

.contact-desc {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 2;
  color: var(--text-dim);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2.25rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #0a0718;
  text-decoration: none;
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  box-shadow: 0 12px 40px -10px rgba(139, 92, 246, 0.6);
  transition: transform 0.2s;
}

.contact-cta:hover {
  transform: scale(1.03);
}

.contact-cta:active {
  transform: scale(0.95);
}

.send-icon {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

.contact-cta:hover .send-icon {
  transform: rotate(180deg) translateX(-4px);
}

.channels-grid {
  display: grid;
  gap: 0.75rem;
}

@media(min-width:640px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}

.channel-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.channel-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  transition: color 0.3s;
}

.channel-item:hover .channel-icon {
  color: var(--c);
}

.channel-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.channel-value {
  font-size: 0.875rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.channel-item:hover .channel-value {
  color: var(--c);
}

/* ===== Footer ===== */

.site-footer {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
}

.footer-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  font-size: 0.6875rem;
  color: var(--text-faint);
}

/* ===== AI Canvas ===== */

#ai-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
  will-change: transform;
}

/* ===== Reveal Animations ===== */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-slide {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .reveal-slide {
  transform: translateX(-24px);
}

.reveal-slide.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Scroll Progress Bar ===== */

#scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  z-index: 100;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  will-change: transform;
  pointer-events: none;
}

/* ===== Extra Reveal Variants ===== */

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .reveal-left {
  transform: translateX(36px);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .reveal-right {
  transform: translateX(-36px);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
}

/* ===== Nav Active Link ===== */

.nav-links a.nav-active {
  color: var(--cyan);
}

/* ===== Feature Icon Float (only after card enters view) ===== */

.feature-card.visible .feature-icon-wrap {
  animation: icon-float 4s ease-in-out infinite;
}

.features-grid .feature-card:nth-child(2).visible .feature-icon-wrap {
  animation-delay: -1.3s;
}

.features-grid .feature-card:nth-child(3).visible .feature-icon-wrap {
  animation-delay: -2.6s;
}

.features-grid .feature-card:nth-child(4).visible .feature-icon-wrap {
  animation-delay: -0.7s;
}

@keyframes icon-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ===== Paint isolation for card-heavy sections ===== */

.feature-card,
.pipeline-card {
  contain: paint;
}

/* ===== Live Transaction Monitor ===== */

.tx-monitor {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  max-width: 48rem;
  border-radius: 1.5rem !important;
  padding: 1.25rem 1.25rem 1rem;
  overflow: hidden;
  contain: paint layout;
}

/* Scanline sweep */
.tx-scanline {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.6) 40%, rgba(139, 92, 246, 0.5) 70%, transparent 100%);
  pointer-events: none;
  z-index: 5;
  animation: tx-scanline-move 4.5s linear infinite;
}

@keyframes tx-scanline-move {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  88% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(340px);
    opacity: 0;
  }
}

/* Suspicious detection badge */
.tx-alert-badge {
  position: absolute;
  top: 3.5rem;
  inset-inline-end: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.625rem;
  background: rgba(255, 94, 122, 0.14);
  border: 1px solid rgba(255, 94, 122, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.7) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tx-alert-badge.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.tx-alert-icon {
  font-size: 0.75rem;
  color: #ff5e7a;
}

.tx-alert-msg {
  font-size: 0.5625rem;
  color: #ff5e7a;
  letter-spacing: 0.06em;
}

/* Header */
.tx-mon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.tx-live-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tx-live-text {
  font-size: 0.625rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
}

/* Counters */
.tx-counters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tx-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.tx-counter-val {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  transition: color 0.3s;
}

.tx-counter--alert .tx-counter-val {
  color: #ff5e7a;
}

.tx-counter-lbl {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.tx-counter-sep {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
}

/* Feed */
.tx-feed {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 13.5rem;
  overflow: hidden;
}

.tx-feed::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3.5rem;
  background: linear-gradient(to bottom, transparent, rgba(10, 7, 24, 0.9));
  pointer-events: none;
  z-index: 3;
}

/* Transaction row */
.tx-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.38s ease, transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[dir="rtl"] .tx-row {
  transform: translateX(-36px);
}

.tx-row.tx-in {
  opacity: 1;
  transform: translateX(0);
}

.tx-row.tx-suspicious {
  border-color: rgba(255, 94, 122, 0.3);
  background: rgba(255, 94, 122, 0.06);
  animation: tx-susp-flash 0.65s ease 0.12s both;
}

@keyframes tx-susp-flash {

  0%,
  100% {
    background: rgba(255, 94, 122, 0.06);
    box-shadow: none;
  }

  45% {
    background: rgba(255, 94, 122, 0.17);
    box-shadow: 0 0 22px -4px rgba(255, 94, 122, 0.45), inset 0 0 12px -4px rgba(255, 94, 122, 0.15);
  }
}

/* Avatar */
.tx-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
}

.tx-suspicious .tx-avatar {
  border-color: rgba(255, 94, 122, 0.38);
  background: rgba(255, 94, 122, 0.1);
  color: #ff5e7a;
}

/* Row info */
.tx-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.tx-route {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.04em;
}

.tx-sep {
  margin: 0 0.25em;
  color: var(--text-faint);
}

.tx-amount {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.tx-suspicious .tx-amount {
  color: #ff5e7a;
}

/* Risk bar */
.tx-risk {
  width: 2.25rem;
  height: 3px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  flex-shrink: 0;
}

.tx-risk-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--cyan);
  transition: width 0.4s ease;
}

.tx-suspicious .tx-risk-fill {
  background: #ff5e7a;
}

/* Status badge */
.tx-badge {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease 0.22s, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.22s;
}

.tx-row.tx-in .tx-badge {
  opacity: 1;
  transform: scale(1);
}

.tx-badge-ok {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: var(--cyan);
}

.tx-badge-flag {
  background: rgba(255, 94, 122, 0.1);
  border: 1px solid rgba(255, 94, 122, 0.38);
  color: #ff5e7a;
}

/* Footer */
.tx-mon-footer {
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tx-engine-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.tx-engine-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--cyan);
  animation: dot-pulse 2s ease-in-out infinite;
}

.tx-engine-lbl {
  font-size: 0.475rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

.tx-acc-lbl {
  font-size: 0.475rem;
  color: var(--violet);
  letter-spacing: 0.1em;
}