<style>
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #020617;
            color: #ffffff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Base Mesh Gradient */
        .mesh-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -3;
            background: 
                radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.4) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(79, 70, 229, 0.3) 0px, transparent 50%),
                radial-gradient(at 50% 100%, rgba(15, 23, 42, 1) 0px, transparent 50%);
        }

	/* Tech Data Grid Overlay */
        .tech-grid {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -2;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
            pointer-events: none;
        }

        /* Animated Mesh Floaters */
        .floater {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -2;
            opacity: 0.5;
            animation: float-mesh 20s infinite alternate ease-in-out;
        }

        @keyframes float-mesh {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(100px, 50px) scale(1.2); }
        }

        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .card-hover:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(96, 165, 250, 0.3);
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* 3D Background Container */
        #joy-3d-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            perspective: 1200px;
            overflow: hidden;
            pointer-events: none;
        }

        .floater {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform, opacity;
            transform-style: preserve-3d;
        }

        .shimmer-text {
            background: linear-gradient(90deg, #ffffff 0%, #60a5fa 25%, #ffffff 50%, #60a5fa 75%, #ffffff 100%);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: shimmer 5s linear infinite;
        }


        @keyframes shimmer { to { background-position: 200% center; } }

        .aero-glass {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
        }

 /* Shimmering Dynamic Animated Background for Flash Pack */
        .grad-flash { 
            background: linear-gradient(-45deg, #4f46e5, #7c3aed, #db2777, #2563eb, #7c3aed); 
            background-size: 400% 400%; 
            animation: flashGradientMove 8s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes flashGradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes flashShimmerSweep {
            0% { left: -150%; }
            100% { left: 150%; }
        }


        /* Glass Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.5);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        .text-gradient {
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .plan-card {
			position: relative;
			border-radius: 28px;
			padding: 2rem;
			transition: 
				transform 0.45s cubic-bezier(.17,.67,.83,.67),
				box-shadow 0.45s ease,
				border-color 0.3s ease;
			will-change: transform;
		}
		.plan-card::after {
			content: '';
			position: absolute;
			inset: -1px;
			border-radius: 28px;
			background: radial-gradient(
				circle at 50% 0%,
				rgba(59,130,246,0.25),
				transparent 70%
			);
			opacity: 0;
			transition: opacity 0.4s ease;
			pointer-events: none;
		}
		
		.plan-card button {
			transition: all 0.3s ease;
		}

		.plan-card:hover button {
			transform: translateY(-3px);
		}

		.plan-card:hover::after {
			opacity: 1;
		}
        .vibe-card:hover { transform: translateY(-10px) rotate(1deg); border-color: rgba(59, 130, 246, 0.5); }

        .grad-usa { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
        .grad-japan { background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%); }
        .grad-uk { background: linear-gradient(135deg, #312e81 0%, #4338ca 100%); }
        .grad-europe { background: linear-gradient(135deg, #065f46 0%, #059669 100%); }
        
        .grad-flash { 
            background: linear-gradient(-45deg, #4f46e5, #7c3aed, #db2777, #2563eb, #7c3aed); 
            background-size: 400% 400%; 
            animation: flashGradientMove 8s ease-in-out infinite;
        }

        @keyframes flashGradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Joyful Setup Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .setup-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .setup-card:hover {
            transform: translateY(-8px);
            border-color: #60a5fa;
            background: rgba(59, 130, 246, 0.05);
        }

        .step-icon-wrapper {
            position: relative;
            animation: float 4s ease-in-out infinite;
        }

        .hide-scrollbar::-webkit-scrollbar { display: none; }
        .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .faq-trigger { cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #94a3b8; }
        .faq-item.active .faq-content { max-height: 200px; padding-bottom: 1.5rem; }

        input, textarea { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: white; }

        @keyframes float-mesh {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(100px, 50px) scale(1.2); }
        }

        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Carousel Logic */
        .carousel-item {
            opacity: 0;
            transition: opacity 1s ease-in-out;
            position: absolute;
            inset: 0;
        }
        .carousel-item.active {
            opacity: 1;
            position: relative;
        }

        /* JOYFUL CARDS STYLING */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        .joy-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .joy-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
        }

        .joy-card:hover {
           transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .joy-card:hover::before {
            transform: translateX(100%);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-item.active .faq-answer { max-height: 200px; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }

	.store-play {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
	 height: 52px; 
    border-radius: 999px; /* smooth pill */
    color: white;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(18px);
    border: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow:
    0 8px 22px rgba(0,0,0,0.35);
}

.store-play i {
    font-size: 23px;
    z-index: 1;
}

.plan-card span {
  line-height: 1.4;
}

#testimonial-track > div {
  flex-shrink: 0;
}
#testimonial-track * {
  box-sizing: border-box;
}

.store-play span {
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 0.8;
    text-transform: uppercase;
    display: block;
	line-height: 1;
}

.store-play strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
}
@media (max-width: 640px) {
  .store-play {
    height: 48px;
    padding: 8px 16px;
    gap: 10px;
  }

  .store-play i {
    font-size: 20px;
  }

  .store-play strong {
    font-size: 14px;
  }
}
/* Apple */
.store-play.apple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow:
        0 12px 30px rgba(236,72,153,0.45),
        inset 0 0 0 rgba(255,255,255,0);
}

/* Google */
.store-play.google {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow:
        0 12px 30px rgba(99,102,241,0.45),
        inset 0 0 0 rgba(255,255,255,0);
}

/* shimmer sweep */
.store-play::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: translateX(-130%);
    transition: transform 0.6s ease;
}

/* click */
.store-play:active {
    transform: scale(0.94);
}		

/* hover lift */
.store-play:hover {
    transform: translateY(-4px) scale(1.03);
}

.store-play:hover::after {
    transform: translateX(130%);
}

/* click bounce */
.store-play:active {
    transform: scale(0.95);
}
.joy-card {
    will-change: transform;
}
.joy-card::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.08),
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.joy-card:hover {
    transform: translateY(-16px) scale(1.03);
}
.joy-card:hover .w-16 {
    transform: rotate(-6deg) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ambient-glow {
    position: fixed;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 70%
    );
    top: -20%;
   left: -15%;
 opacity: 0.6;
    z-index: -4;
    pointer-events: none;
}

#stars {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

#floating-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.floater {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-animation linear infinite;
    filter: drop-shadow(0 0 10px currentColor);
    will-change: transform, opacity;
}

@keyframes float-animation {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20%, 80% {
        opacity: 0.7;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
        opacity: 0;
    }
}

.satellite-svg {
    width: 65px;
    height: 65px;
}

#floating-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-floater {
  position: absolute;
  animation: float-animation linear infinite;
  opacity: var(--opacity, 0.25);
  filter: drop-shadow(0 0 6px currentColor);
}
@keyframes float-animation {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  20%, 80% {
    opacity: 0.7;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
    opacity: 0;
  }
}

#plans-grid > * {
  scroll-snap-align: center;
}

#plans-grid > *:first-child,
.vibe-card {
  flex: 0 0 340px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== GLOBAL GLASS 3D BACKGROUND ===== */
#global-3d-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  perspective: 1600px;
  overflow: hidden;
  background: #020617;
}

#global-3d-bg .layer {
  position: absolute;
  inset: -30%;
  transform-style: preserve-3d;
}

/* FAR COLOR DEPTH */
#global-3d-bg .layer-back {
  background:
    radial-gradient(circle at 15% 25%, rgba(59,130,246,0.22), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(99,102,241,0.18), transparent 60%);
  transform: translateZ(-420px) scale(1.7);
}

/* MID NETWORK GRID (GLASSY) */
#global-3d-bg .layer-mid {
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 35%, transparent 75%);
  transform: translateZ(-260px) scale(1.45);
}

/* FRONT LIGHT DIFFUSION */
#global-3d-bg .layer-front {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.10), transparent 65%);
  transform: translateZ(-120px);
}

/* GLASS FROST LAYER (IMPORTANT) */
#global-3d-bg .layer-glass {
  inset: 0;
  backdrop-filter: blur(60px) saturate(140%);
  -webkit-backdrop-filter: blur(60px) saturate(140%);
  background:
    linear-gradient(
      to bottom right,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.05)
    );
  opacity: 0.85;
}	
/* Flash Pack 3D Carousel */
.flash-slide {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 340px;
  min-height: 360px;
  border-radius: 28px;
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  pointer-events: none;
}
.flash-slide.active {
  opacity: 1;
  z-index: 30;
  transform: translateZ(120px);
  pointer-events: auto;
}

.flash-slide.prev {
  opacity: 0.45;
  z-index: 20;
  transform: translateX(-110px)
             translateZ(-120px)
             rotateY(14deg)
             scale(0.95);
}

.flash-slide.next {
  opacity: 0.45;
  z-index: 20;
  transform: translateX(110px)
             translateZ(-120px)
             rotateY(-14deg)
             scale(0.95);
}
#flash-carousel {
  isolation: isolate;
}

.section {
  padding-top: 6rem;   /* 96px */
  padding-bottom: 6rem;
}

.avatar {
  width: 35px;
  height: 35px;
  border-radius: 9999px;
  border: 1px solid #020617; /* thinner border */
  object-fit: cover;
  opacity: 0;
  transform: translateY(6px) scale(0.9);
  animation: avatarIn 0.6s ease forwards;
}

  @keyframes avatarIn {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .avatar-out {
    opacity: 0;
    transform: translateY(-6px) scale(0.85);
    transition: all 0.4s ease;
  }

.join-indicator {
  position: absolute;
  top: -22px;
  left: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
  opacity: 0;
  transform: translateY(6px);
  animation: joinFade 2.4s ease forwards;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

@keyframes joinFade {
  0% { opacity: 0; transform: translateY(6px); }
  20% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-4px); }
}

.join-indicator.first {
  font-size: 10px;
  padding: 3px 8px;
  opacity: 0.85;
}

.stars-dim {
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

        .carousel-container {
            position: relative;
            height: 600px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 2000px;
        }

        .iphone-frame {
            position: absolute;
            width: 260px;
            height: 530px;
            background: var(--card-bg); 
            border: 8px solid #1e293b;
            border-radius: 48px;
            padding: 10px;
            box-shadow: 0 40px 80px -15px rgba(0,0,0,0.8);
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            cursor: pointer;
            backface-visibility: hidden;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .iphone-frame:hover {
            box-shadow: 0 60px 100px -20px rgba(0,0,0,1), 0 0 25px rgba(59, 130, 246, 0.15);
        }

        .pos-center { transform: translate3d(0, 0, 150px); z-index: 30; opacity: 1; border-color: #334155; }
        .pos-center:hover { transform: translate3d(0, -15px, 180px); }

        .pos-left { transform: translate3d(-200px, 0, -200px) rotateY(25deg); z-index: 10; opacity: 0.4; filter: blur(1px); }
        .pos-left:hover { transform: translate3d(-220px, -10px, -150px) rotateY(15deg); opacity: 0.7; filter: blur(0px); }

        .pos-right { transform: translate3d(200px, 0, -200px) rotateY(-25deg); z-index: 10; opacity: 0.4; filter: blur(1px); }
        .pos-right:hover { transform: translate3d(220px, -10px, -150px) rotateY(-15deg); opacity: 0.7; filter: blur(0px); }

        .iphone-screen {
            width: 100%;
            height: 100%;
            background: #020617;
            border-radius: 38px;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .notch {
            position: absolute;
            top: 0; left: 50%; transform: translateX(-50%);
            width: 90px; height: 20px; background: #000;
            border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; z-index: 50;
        }

        .app-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .radial-progress {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .radial-svg { transform: rotate(-90deg); }
        .radial-bg { fill: none; stroke: #0f172a; stroke-width: 8; }
        .radial-bar {
		  fill: none;
		  stroke: #60a5fa;
		  stroke-width: 8;
		  stroke-linecap: round;

		  /* correct math: 2πr where r=60 */
		  stroke-dasharray: 377;
		  stroke-dashoffset: 377;

		  transition: stroke-dashoffset 1.4s ease-out;
		  filter: drop-shadow(0 0 6px rgba(96,165,250,0.45));
		}

        .pulse-dot {
            width: 8px; height: 8px; background: var(--secondary); border-radius: 50%;
            position: relative;
        }
        .pulse-dot::after {
            content: ''; position: absolute; inset: -4px;
            background: var(--secondary); border-radius: 50%;
            animation: sonar 2s infinite; opacity: 0.4;
        }
        @keyframes sonar {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(3); opacity: 0; }
        }

        /* MAIN PASS CARD: Emerald Gradient + Complex Glow */
        .flash-sale { 
            background: linear-gradient(135deg, #22C55E 0%, #16A34A 60%, #15803D 100%); 
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(34,197,94,0.4), 0 20px 40px rgba(34,197,94,0.35);
            z-index: 2;
        }
        
        .iphone-frame:hover .flash-sale {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 0 0 1px rgba(34,197,94,0.6), 0 25px 50px rgba(34,197,94,0.45);
        }

        .price-badge {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 4px 12px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 800;
            backdrop-filter: blur(4px);
        }

        .action-icon {
            color: var(--highlight);
            transition: all 0.3s ease;
        }
        .iphone-frame:hover .action-icon {
            filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
            transform: scale(1.1);
        }

        .btn-primary {
            background: var(--primary); 
            color: white; 
            padding: 14px 32px; 
            border-radius: 14px;
            font-weight: 800; 
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
        }
        .btn-primary:hover {
            background: var(--highlight);
            transform: translateY(-2px);
        }

        .dot {
            width: 8px; height: 8px; background: #1e293b; border-radius: 50%; margin: 0 6px;
            transition: all 0.3s ease;
        }
        .dot.active {
            width: 24px; background: var(--primary); border-radius: 10px;
        }

        .scan-container { position: relative; overflow: hidden; }
        .laser-line {
            position: absolute; width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--highlight), transparent);
            box-shadow: 0 0 10px var(--highlight); top: 0;
            animation: scan 2.5s infinite linear;
        }
        @keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
		
		@media (max-width: 768px) {
  .carousel-container {
    transform: scale(0.85);
    height: 520px;
  }
}
/* ===== MOBILE: REMOVE CORNER GLOW ===== */
@media (max-width: 640px) {

  /* Kill oversized radial glows */
  .ambient-glow,
  #global-3d-bg .layer-back,
  #global-3d-bg .layer-front {
    opacity: 0 !important;
  }

  /* Reduce blur intensity on glass layers */
  .glass,
  .aero-glass {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  /* Prevent blur bleeding outside viewport */
  body {
    overflow-x: hidden;
  }

  /* Slightly soften section edges */
  section {
    border-radius: 0 !important;
  }
}
@media (max-width: 640px) {
  #global-3d-bg .layer-glass {
    backdrop-filter: blur(40px) saturate(120%) !important;
    opacity: 0.75 !important;
  }
}

/* ===== MOBILE: HARD STOP HORIZONTAL SCROLL ===== */
@media (max-width: 640px) {

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* Contain all sections */
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Kill off-screen positioned elements */
  [class*="absolute"],
  [class*="fixed"] {
    max-width: 100%;
  }

  /* Prevent transform overflow */
  * {
    box-sizing: border-box;
  }
}

/* ===== MOBILE: CENTER PLAN CARDS ===== */
@media (max-width: 640px) {

  #plans-grid {
    scroll-snap-type: x mandatory;
    padding-left: calc((100vw - 320px) / 2);
    padding-right: calc((100vw - 320px) / 2);
  }

  #plans-grid > .plan-card {
    scroll-snap-align: center;
  }
}
@media (max-width: 640px) {
  .plan-card {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .section {
    padding-top: 7rem; /* 112px */
    padding-bottom: 7rem;
  }
}

.plan-slide {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.25),
    0 18px 40px rgba(0,0,0,0.35);
}

.plan-badge {
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(255,255,255,0.2);
}

.plan-price {
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 800;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
}

/* inner carousel spacing */
#inner-plan-carousel {
  gap: 12px; /* 👈 spacing between cards */
}

#inner-plan-carousel > .plan-slide {
  min-width: calc(100% - 12px); /* keeps slide math correct */
}

.scan-container {
  position: relative;
  overflow: hidden;
}

.laser-line {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #60a5fa,
    transparent
  );
  box-shadow:
    0 0 12px rgba(96,165,250,0.8),
    0 0 24px rgba(96,165,250,0.5);
  animation: scan-move 2.2s linear infinite;
}

@keyframes scan-move {
  0%   { top: -10%; }
  100% { top: 110%; }
}

.scan-container {
  animation: scan-pulse 1.6s ease-in-out infinite;
}

@keyframes scan-pulse {
  0%,100% { border-color: #1e293b; }
  50%     { border-color: #60a5fa; }
}

.radial-bar {
  animation: ring-breathe 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(96,165,250,0.35));
}

@keyframes ring-breathe {
  0%,100% {
    stroke-dashoffset: 154;
    opacity: 0.9;
  }
  50% {
    stroke-dashoffset: 146;
    opacity: 1;
  }
}

.shimmer-count {
  background: linear-gradient(
    90deg,
    #ffffff,
    #60a5fa,
    #ffffff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-pass 6s linear infinite;
}

@keyframes shimmer-pass {
  to { background-position: 200% center; }
}

.signal-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: signal-pulse 1.8s ease-in-out infinite;
}

@keyframes signal-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.iphone-frame:hover .radial-progress {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.data-spike-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-spike {
  position: absolute;
  width: 2px;
  height: 10px;
  background: linear-gradient(
    to top,
    transparent,
    #60a5fa,
    transparent
  );
  opacity: 0;
  animation: spike-pop 0.9s ease-out forwards;
}

@keyframes spike-pop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1.4); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}

.plan-card {
    opacity: 0;
    transition: all 0.4s ease;
    animation: cardReveal 0.7s ease forwards;
	backdrop-filter: blur(18px);
}

.plan-card:nth-child(1) { animation-delay: 0.05s; }
.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.15s; }
.plan-card:nth-child(4) { animation-delay: 0.2s; }
.plan-card:nth-child(5) { animation-delay: 0.25s; }
.plan-card:nth-child(6) { animation-delay: 0.3s; }
.plan-card:nth-child(7) { animation-delay: 0.35s; }
.plan-card:nth-child(8) { animation-delay: 0.4s; }
.plan-card:nth-child(9) { animation-delay: 0.45s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
  .plan-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.5),
        0 0 50px rgba(59,130,246,0.25);
}

.plan-card:hover .text-4xl {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.plan-card {
    backdrop-filter: blur(18px);
    transition: all 0.4s ease;
}


.popular-card {
    border: 1px solid rgba(59,130,246,0.6);
    background: linear-gradient(
        180deg,
        rgba(59,130,246,0.08),
        rgba(255,255,255,0.02)
    );
}

.usage-bar {
    box-shadow: 0 0 10px rgba(59,130,246,0.6);
}

.unlimited-plan .usage-bar {
    box-shadow: 0 0 12px rgba(168,85,247,0.6);
}

.feature-card {
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 15px 40px rgba(37,99,235,0.25);
}

/* Glow layer */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon animation */
.feature-card i {
  transition: all 0.4s ease;
}

.feature-card:hover i {
  transform: scale(1.15);
}

.feature-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: rotate(-2deg) scale(1.05);
}

/* Animated gradient shimmer */
.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(59,130,246,0.15),
    transparent,
    rgba(168,85,247,0.15),
    transparent
  );
  animation: spinBg 10s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes spinBg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* FUN ICON ORBIT */
.fun-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.fun-icon i {
  font-size: 20px;
  color: #60a5fa;
  z-index: 3;
}

/* Orbit ring */
.orbit-ring {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px dashed rgba(59,130,246,0.5);
  animation: orbitSpin 6s linear infinite;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.globe-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(59,130,246,0.25) 0%,
    rgba(168,85,247,0.15) 40%,
    transparent 70%);
  filter: blur(80px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* === Futuristic Orb === */
.tech-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(59,130,246,0.25) 0%,
    rgba(168,85,247,0.15) 40%,
    transparent 70%);
  filter: blur(90px);
  animation: orbPulse 8s ease-in-out infinite;
}

/* === Subtle Moving Grid === */
.tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  opacity: 0.4;
}

@keyframes orbPulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

/* === Metrics Styling === */
.metric-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-top: 8px;
}

/* BIG GLOWING WORLD EFFECT */
.world-glow {
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(59,130,246,0.5), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(168,85,247,0.4), transparent 50%);
  filter: blur(120px);
  animation: pulseWorld 10s ease-in-out infinite;
}

@keyframes pulseWorld {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Glass Floating Stat Cards */
.stat-card {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.6);
  box-shadow: 0 20px 50px rgba(59,130,246,0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}

		/* SECTION BACKGROUND */
        .trust-section {
            
            position: relative;
        }

        .blueprint-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse at center, black, transparent 80%);
            pointer-events: none;
        }

        /* PREMIUM GLASS CONTAINER */
        .bright-glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.03);
            max-width: 1000px;
            margin: 0 auto;
            z-index: 10;
        }
        
        .bright-glass:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(59, 130, 246, 0.08);
        }

        /* ACTUAL KANGAROO - PHOTO TRANSPARENT */
        .kangaroo-peek {
            position: absolute;
            bottom: -80px;
            right: -10px;
            width: 220px;
            height: auto;
            opacity: 0;
            transform: translateY(50px) scale(0.8);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            z-index: 5;
            filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
        }

        .bright-glass:hover .kangaroo-peek {
            opacity: 0.8;
            bottom: -20px;
            transform: translateY(0) scale(1) rotate(-5deg);
        }

        /* FLAG WAVE ANIMATION */
        .flag-wave-container {
            position: absolute;
            inset: -5%;
            z-index: 0;
            opacity: 0.15;
            transition: opacity 0.8s ease;
            pointer-events: none;
            animation: natural-flutter 12s ease-in-out infinite;
            transform-origin: center;
        }

        @keyframes natural-flutter {
            0%, 100% { transform: scale(1.1) skew(0deg, 0deg) translateX(0); }
            50% { transform: scale(1.15) skew(-1deg, -0.5deg) translateX(5px); }
        }

        .bright-glass:hover .flag-wave-container { opacity: 0.35; }

        .flag-wave-bg {
            width: 100%; height: 100%;
            background-image: url('https://flagcdn.com/w1280/au.png');
            background-size: cover; background-position: center;
            filter: contrast(1.1) brightness(0.9);
        }

        .data-beam {
            position: absolute; top: 0; left: -100%; width: 40%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.05), transparent);
            transform: skewX(-25deg); pointer-events: none; z-index: 1;
        }
        .bright-glass:hover .data-beam { animation: beam-sweep 3.5s infinite linear; }
        @keyframes beam-sweep { 0% { left: -100%; } 100% { left: 200%; } }

        .copy-toast {
            position: absolute; bottom: -30px; left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #3b82f6; color: white; padding: 4px 10px; border-radius: 6px;
            font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
            opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            white-space: nowrap; z-index: 50;
        }
        .copy-toast.active { opacity: 1; transform: translateX(-50%) translateY(0); }

        .status-pill {
            background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2);
            color: #10b981; padding: 3px 10px; border-radius: 100px;
            font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
        }

        .tech-spec {
            border-left: 1px solid rgba(255,255,255,0.08);
            padding-left: 1.25rem; transition: all 0.3s ease;
            position: relative;
            z-index: 20;
        }
        .bright-glass:hover .tech-spec { border-color: rgba(59, 130, 246, 0.4); }

        .cert-icon {
            width: 32px; height: 32px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; color: #60a5fa;
            transition: all 0.3s ease;
        }
        .tech-spec:hover .cert-icon {
            background: #3b82f6; color: white; transform: scale(1.1);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }

</style>