


:root {
  --tb-primary: #60a5fa;
  
  --tb-primary-soft: #93c5fd;
  
  --tb-primary-container: #dbeafe;
  
  --tb-primary-bg: #eff6ff;
  
  --tb-bg: #f1f5ff;
  
  --tb-surface: #ffffff;
  
  --tb-on-bg: #1e293b;
  
  --tb-on-surface: #253144;
  --tb-on-surface-variant: #334155;
  
  --tb-outline-variant: #b2b7b9;
  --tb-on-primary-strong: #1e3a5f;
}


.preserve-3d {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}


.black-metal-side {
  background: linear-gradient(
    110deg,
    #111 0%,
    #222 15%,
    #000 35%,
    #151515 65%,
    #050505 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.glass-front {
  background: #000;
  box-shadow:
    inset 0 0.5px 1px rgba(255, 255, 255, 0.4),
    inset 0 -0.5px 1px rgba(0, 0, 0, 0.6);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


@keyframes custom-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 10px 25px -5px rgba(30, 58, 95, 0.18),
      0 0 0 0 rgba(96, 165, 250, 0);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 20px 30px -5px rgba(30, 58, 95, 0.25),
      0 0 0 8px rgba(96, 165, 250, 0.22);
  }
}

.animate-fab-pulse {
  animation: custom-pulse 3s infinite ease-in-out;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    #60a5fa,
    #93c5fd,
    #3b82f6,
    #93c5fd,
    #60a5fa
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

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

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

.animate-float {
  animation: float-y 3.5s ease-in-out infinite;
}


.pin-spacer {
  pointer-events: none;
}


.app-screen {
  background: var(--tb-bg);
  overflow: hidden;
}



.themed-card {
  background: var(--tb-surface);
  border: 1px solid var(--tb-primary);
  border-radius: 16px;
}
.description-font {
  font-family: "Caveat", cursive;
}


.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.feature-card {
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: #3b82f6;
  
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(96, 165, 250, 0.35);
}


:root {
  --scroll-y: 0;
  --scroll-progress: 0;
  --tb-secondary: #1e3a5f;
  
}

.bg-stage {
  position: fixed;
  inset: -10vh -10vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform-origin: 50% 50%;
  transform: rotate(calc(var(--scroll-progress) * 8deg));
  filter: hue-rotate(calc(var(--scroll-progress) * 28deg))
    saturate(calc(1 + var(--scroll-progress) * 0.25));
  transition: filter 0.4s linear;
  will-change: transform, filter;
}


.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 50% at 15% 20%,
      rgba(96, 165, 250, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      55% 45% at 85% 80%,
      rgba(147, 197, 253, 0.2) 0%,
      transparent 70%
    ),
    radial-gradient(
      50% 60% at 50% 100%,
      rgba(30, 58, 95, 0.1) 0%,
      transparent 75%
    );
  transform: translate3d(0, calc(var(--scroll-y) * 0.04 * 1px), 0);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform, opacity;
}


.bg-orb-1 {
  width: 52vw;
  height: 52vw;
  max-width: 720px;
  max-height: 720px;
  top: -12vh;
  left: -14vw;
  background: radial-gradient(
    circle at 35% 35%,
    var(--tb-primary) 0%,
    rgba(96, 165, 250, 0) 70%
  );
  transform: translate3d(
      calc(var(--scroll-y) * 0.1 * 1px),
      calc(var(--scroll-y) * 0.14 * 1px),
      0
    )
    rotate(calc(var(--scroll-progress) * 25deg));
}


.bg-orb-2 {
  width: 48vw;
  height: 48vw;
  max-width: 640px;
  max-height: 640px;
  top: -8vh;
  right: -12vw;
  background: radial-gradient(
    circle at 60% 40%,
    var(--tb-primary-soft) 0%,
    rgb(0, 0, 0) 70%
  );
  transform: translate3d(
      calc(var(--scroll-y) * -0.12 * 1px),
      calc(var(--scroll-y) * 0.18 * 1px),
      0
    )
    rotate(calc(var(--scroll-progress) * -30deg));
}


.bg-orb-3 {
  width: 60vw;
  height: 60vw;
  max-width: 820px;
  max-height: 820px;
  top: 35vh;
  left: 20vw;
  opacity: 0.45;
  background: radial-gradient(
    circle at 50% 50%,
    var(--tb-primary-container) 0%,
    rgba(219, 234, 254, 0) 70%
  );
  transform: translate3d(
      calc(var(--scroll-y) * 0.07 * 1px),
      calc(var(--scroll-y) * -0.1 * 1px),
      0
    )
    rotate(calc(var(--scroll-progress) * 20deg))
    scale(calc(1 + var(--scroll-progress) * 0.12));
}


.bg-orb-4 {
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  bottom: -15vh;
  right: -10vw;
  opacity: calc(0.2 + var(--scroll-progress) * 0.35);
  background: radial-gradient(
    circle at 40% 60%,
    var(--tb-secondary) 0%,
    rgba(95, 30, 30, 0) 70%
  );
  transform: translate3d(
      calc(var(--scroll-y) * -0.08 * 1px),
      calc(var(--scroll-y) * -0.16 * 1px),
      0
    )
    rotate(calc(var(--scroll-progress) * -18deg));
}


.bg-orb-5 {
  width: 36vw;
  height: 36vw;
  max-width: 480px;
  max-height: 480px;
  bottom: -5vh;
  left: -8vw;
  opacity: calc(0.3 + var(--scroll-progress) * 0.25);
  background: radial-gradient(
    circle at 50% 50%,
    #3b82f6 0%,
    rgba(59, 246, 81, 0) 65%
  );
  transform: translate3d(
      calc(var(--scroll-y) * 0.18 * 1px),
      calc(var(--scroll-y) * -0.22 * 1px),
      0
    )
    rotate(calc(var(--scroll-progress) * 35deg));
}


@keyframes orb-breathe {
  0%,
  100% {
    filter: blur(90px);
  }

  50% {
    filter: blur(110px);
  }
}

.bg-orb {
  animation: orb-breathe 14s ease-in-out infinite;
}

.bg-orb-2 {
  animation-delay: -3s;
}

.bg-orb-3 {
  animation-delay: -6s;
}

.bg-orb-4 {
  animation-delay: -9s;
}

.bg-orb-5 {
  animation-delay: -12s;
}


@media (prefers-reduced-motion: reduce) {
  .bg-stage,
  .bg-orb,
  .bg-mesh {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: blur(90px) !important;
  }

  .bg-stage {
    filter: none !important;
  }
}


@media (max-width: 767px) {
  .bg-orb {
    
    filter: blur(48px);
    animation: none;
  }

  .bg-stage {
    
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
