@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    --primary: #1ECAD3;
    --primary-op: rgba(30, 202, 211, 0.2);
    --primary-dark: #00A8B0;
    --primary-light: #6FF7FF;
    --profit-green: #0BFF44;
    --accent: #B026FF;
    --bg-dark: #0F1115;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;

    --glow-primary: 0 0 20px rgba(30, 202, 211, 0.6);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* High-Res Mesh Background - More Subtle */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(30, 202, 211, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(176, 38, 255, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0F1115;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary);
}

.highlight-text {
    color: var(--profit-green);
    text-shadow: 0 0 15px rgba(11, 255, 68, 0.6);
}

.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(30, 202, 211, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    font-size: 1.1rem;
    z-index: 1;
    cursor: pointer;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(30, 202, 211, 0.7);
}

.btn:hover::before {
    left: 100%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.align-left {
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: var(--profit-green);
    box-shadow: 0 0 15px var(--profit-green);
    border-radius: 2px;
}

.section-title.align-left::after {
    left: 0;
    width: 80px;
}

/* Header & Nav */
header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: center;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.nav-container a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(30, 202, 211, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-nav a {
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    perspective: 1000px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* 3D CUBE - HIGH TECH */
.cube-container {
    width: 220px;
    height: 220px;
    margin: 60px auto 100px;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
    position: relative;
}

.cube-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.trust-pill:hover {
    background: rgba(11, 255, 68, 0.15);
    border-color: var(--profit-green);
    color: white;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(25deg);
}

.face {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(30, 202, 211, 0.15);
    /* Transparent Tech Glass */
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    box-shadow: 0 0 30px rgba(30, 202, 211, 0.2) inset;
    backdrop-filter: blur(2px);
}

.face svg {
    filter: drop-shadow(0 0 10px var(--primary));
    opacity: 0.9;
}

.front {
    transform: rotateY(0deg) translateZ(110px);
}

.back {
    transform: rotateY(180deg) translateZ(110px);
}

.right {
    transform: rotateY(90deg) translateZ(110px);
}

.left {
    transform: rotateY(-90deg) translateZ(110px);
}

.top {
    transform: rotateX(90deg) translateZ(110px);
    background: rgba(30, 202, 211, 0.3);
}

.bottom {
    transform: rotateX(-90deg) translateZ(110px);
    box-shadow: 0 0 100px rgba(30, 202, 211, 0.4);
}

/* FLOATING & GLITCH ANIMATIONS */
@keyframes rotate {
    0% {
        transform: rotateX(-15deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(-15deg) rotateY(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(30, 202, 211, 0.4));
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.icon-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 3.5rem;
}

.icon-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 0.5s;
    font-size: 2.5rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

/* CARDS & GLASSMORPHISM */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* About Grid */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.section-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tech-list {
    border: none;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-list li {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 260px;
    height: 520px;
    background: #000;
    border-radius: 40px;
    border: 4px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(30, 202, 211, 0.2);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(30, 202, 211, 0.1), transparent);
    z-index: 1;
}

.app-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

.app-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px var(--primary));
}

.app-name {
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(30, 202, 211, 0.5);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 3s linear infinite;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}


/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-op);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(30, 202, 211, 0.4));
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Audience List */
.audience-card {
    background: rgba(30, 202, 211, 0.05);
    border-color: var(--primary);
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    background: transparent;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    font-size: 1.1rem;
}

.audience-list li:last-child {
    border-bottom: none;
}

/* CURRICULUM */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.curriculum-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.curriculum-item:hover {
    border-color: var(--primary);
    background: rgba(30, 202, 211, 0.05);
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(30, 202, 211, 0.3);
    flex-shrink: 0;
}

.curriculum-text {
    color: white;
    display: flex;
    flex-direction: column;
}

.curriculum-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.user-avatar {
    width: 70px;
    height: 70px;
    background: #2a2d35;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(30, 202, 211, 0.3);
    color: white;
}

.testimonial-text {
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary);
    font-weight: bold;
}

/* FINAL CTA */
.final-cta {
    background: transparent;
    padding-top: 50px;
}

.cta-card {
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(30, 202, 211, 0.3);
    text-align: center;
}

.cta-card h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.cta-card p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* SCROLL REVEAL CLASS (JS Hook) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: 100px 0;
    position: relative;
}

footer {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.copyright {
    margin-top: 10px;
    opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-container {
        display: none;
        /* Hide Desktop Nav */
    }

    .header-content {
        justify-content: flex-end;
        padding-right: 20px;
    }

    .menu-toggle {
        display: flex;
        /* Show Hamburger */
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cube-container {
        transform: scale(0.8);
        margin: 40px auto;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.2rem;
        width: 100%;
    }

    .section-title.align-left {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text {
        text-align: center;
    }

    .tech-list {
        justify-content: center;
    }

    .section-title.align-left::after {
        left: 25%;
        width: 50%;
    }
}

/* URGENCY BADGE */
.urgency-badge {
    background: rgba(255, 60, 60, 0.2);
    border: 1px solid rgba(255, 60, 60, 0.5);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.2);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 60, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
    }
}

/* QUIZ OVERLAY FUNNEL */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #1a1d24 0%, #0F1115 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.quiz-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quiz-container {
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.quiz-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.4s ease;
}

.quiz-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(20, 23, 28, 0.8);
    backdrop-filter: blur(30px);
    padding: 40px 30px;
    transform: translateY(0);
    animation: quizPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes quizPopIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.quiz-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: var(--font-main);
    font-weight: 500;
}

.quiz-btn:hover {
    background: rgba(30, 202, 211, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

/* ANALYZING STATE */
.analyzing-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scanner-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(30, 202, 211, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(30, 202, 211, 0.2);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.analyzing-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.analyzing-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA VALUE STACK */
.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    transform: rotate(5deg);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.5);
    z-index: 2;
}

.value-stack-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ddd;
}

.old-price {
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.8;
}

.stack-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.stack-total {
    text-align: right;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.final-price-container {
    margin-bottom: 40px;
}

.price-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--primary);
}

.big-price {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 30px var(--primary);
}

.installment-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 202, 211, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(30, 202, 211, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 202, 211, 0);
    }
}

/* SOCIAL PROOF NOTIFICATIONS (Toast) */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast-card {
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    animation: slideInToast 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.toast-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(30, 202, 211, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes slideInToast {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToast {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 202, 211, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.8rem;
    color: #aeaeae;
}

.toast-time {
    font-size: 0.7rem;
    color: #666;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* LOCK SCREEN MOCKUP STYLES */
.lock-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #09090b, #111827);
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

.ls-header {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.ls-time {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
}

.ls-date {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.ls-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ls-notification {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 12px;
    color: white;
    cursor: default;
    transition: 0.2s;
}

.ls-notification:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.ls-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
    color: #000;
    flex-shrink: 0;
}

.ls-icon svg {
    width: 20px;
    height: 20px;
}

.ls-content {
    flex: 1;
    overflow: hidden;
}

.ls-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2px;
}

.ls-app-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.ls-ago {
    font-size: 0.7rem;
    opacity: 0.6;
}

.ls-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.ls-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Performance Optimization Hints */
.reveal {
    will-change: transform, opacity;
}

.floating-money {
    will-change: transform;
}