:root {
  --blob-blur: 120px;
}

.site-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--blob-blur));
  mix-blend-mode: multiply;
  opacity: 0.9;
  transform: translate3d(0,0,0);
  will-change: transform, opacity;
  pointer-events: none;
}

/* Individual blob placements and colors */
#blob1 {
  top: -8%;
  left: 8%;
  background: rgba(6,182,212,0.95); /* teal-ish */
  animation-duration: 10s;
}

#blob2 {
  top: -6%;
  right: 10%;
  background: rgba(112,76,182,0.9); /* purple */
  animation-duration: 12s;
}

#blob3 {
  bottom: -10%;
  left: 14%;
  background: rgba(236,72,153,0.88); /* pink */
  animation-duration: 11s;
}

#blob4 {
  bottom: 6%;
  right: 18%;
  background: rgba(251,191,36,0.9); /* amber */
  animation-duration: 13s;
}

.animate-blob {
  animation-name: blobMove;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes blobMove {
  0% {
    transform: translate3d(0,0,0) scale(1);
  }
  25% {
    transform: translate3d(-6vw, 4vh, 0) scale(1.04);
  }
  50% {
    transform: translate3d(8vw, -6vh, 0) scale(0.96);
  }
  75% {
    transform: translate3d(-4vw, -8vh, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0,0,0) scale(1);
  }
}

/* Slight responsiveness: scale blobs on small screens */
@media (max-width: 640px) {
  #blob1, #blob2, #blob3, #blob4 {
    width: 380px;
    height: 380px;
  }
}
/* Styles moved from original index.html */
:root {
    --bg-primary: #000000;
    --text-primary: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(0, 0, 0, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
}

body { background-color: #000000 !important; }

@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.1); }
  100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob { animation: blob 15s infinite alternate; }

@keyframes pageEnter {
  0% { opacity: 0; transform: translateY(15px) scale(0.98); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.animate-page-enter { animation: pageEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.animate-pulse-red { animation: pulse-red 1.5s infinite; }

.transition-colors, .transition-transform { transition-property: all; transition-duration: 500ms; }

.active-nav-button { background-color: white; color: black; box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1); }

/* Component card styles (moved from dynamic JS) */
.glass-card-lg {
    position: relative;
    padding: 2rem;
    border-radius: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background-color: var(--glass-bg);
    transition: all 0.7s;
    cursor: default;
}
@media (min-width: 768px) { .glass-card-lg { padding: 4rem; border-radius: 3rem; } }

.glass-card-sm {
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background-color: var(--glass-bg);
    transition: all 0.3s;
}

.primary-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    background-color: white;
    color: black;
    cursor: pointer;
}
.primary-cta-button:hover { transform: scale(1.05); background-color: #f3f4f6; }
@media (min-width: 640px) { .primary-cta-button { width: auto; } }

.secondary-cta-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
}
.secondary-cta-button:hover { background-color: rgba(255,255,255,0.1); }
@media (min-width: 640px) { .secondary-cta-button { width: auto; } }

/* small utility */
.hidden { display: none; }

/* Nav shrink styles used by JS */
#desktop-nav {
  transition: all 400ms cubic-bezier(.2,.8,.2,1);
}

.nav-shrink {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
  width: 140px !important;
  justify-content: center !important;
  border-radius: 2rem !important;
}

/* Blob positioning defaults */
.site-blob { position: absolute; filter: blur(128px); opacity: 0.08; }

/* OMNi card gradient-edge overlay and animation */
.glass-card-lg {
  position: relative;
  overflow: hidden;
}
.glass-card-lg::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(6,182,212,0.95), rgba(112,76,182,0.9), rgba(236,72,153,0.88), rgba(251,191,36,0.9), rgba(6,182,212,0.95));
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  mix-blend-mode: screen;
  filter: blur(8px);
  transform: scale(1);
}

.glass-card-lg:hover::before {
  animation: omniGradientEdge 0.9s ease-out forwards;
}

@keyframes omniGradientEdge {
  0% {
    opacity: 1;
    transform: scale(0.995);
    filter: blur(14px);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.01);
    filter: blur(6px);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(22px);
  }
}

/* Ensure inner content sits above the overlay */
.glass-card-lg > .relative, .glass-card-lg > .p-6 { z-index: 40; position: relative; }

/* Small visual tweak for the download button */
.secondary-cta-button { display: inline-flex; align-items: center; gap: 0.6rem; }

/* Icon-only download button (white circular) */
.icon-download-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: white;
  color: black;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: none;
  text-decoration: none;
}
.icon-download-button:hover { transform: scale(1.06); }

/* Circular frosted back button (used on omni-download.html) */
.back-circle {
  position: absolute;
  top: 1.25rem;
  left: 1rem;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(0,0,0,0.45);
  color: white;
  text-decoration: none;
}
.back-circle i, .back-circle svg { color: white; }

/* Video section styles */
.video-section { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; justify-content: center; }
.video-caption { color: #f8fafc; opacity: 0.95; text-transform: uppercase; letter-spacing: 0.02em; }
.video-wrapper { width: 100%; max-width: 920px; position: relative; }
.unlock-video { width: 100%; height: auto; border-radius: 12px; overflow: hidden; display: block; box-shadow: 0 12px 40px rgba(0,0,0,0.6); object-fit: cover; }

/* Unmute button overlay */
.unmute-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 40;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.unmute-btn:hover { transform: translateY(-1px); }

@media (max-width: 640px) {
  .video-caption { font-size: 0.85rem; }
  .unlock-video { border-radius: 10px; }
}


