/* Authentication Styles */

.auth-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0;
    animation: fadeIn 0.5s ease;
    overflow-y: auto;
    position: relative;
}

.auth-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.auth-container.active {
    display: flex;
}

.auth-hero {
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    background:
        radial-gradient(ellipse 120% 80% at 15% 50%, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 85% 50%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 150% 100% at 50% -30%, rgba(120, 119, 198, 0.25) 0%, transparent 60%);
    overflow: hidden;
}

.header-login {
    position: absolute;
    top: 24px;
    right: 48px;
    z-index: 10;
}

.header-login .google-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.header-login .google-btn svg {
    width: 16px;
    height: 16px;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(99, 102, 241, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(236, 72, 153, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.auth-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(99, 102, 241, 0.02) 60deg, transparent 120deg, rgba(236, 72, 153, 0.02) 180deg, transparent 240deg, rgba(16, 185, 129, 0.02) 300deg, transparent 360deg);
    animation: rotateBg 80s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1150px;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: center;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-text .auth-badge {
    margin-bottom: 24px;
}

.hero-text h1 {
    text-align: center;
}

.hero-text .auth-tagline,
.hero-text .auth-subtitle {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

.hero-cta {
    margin-top: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-notify-row {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-notify-row .hero-notify-form {
    display: flex;
    gap: 8px;
}

.hero-notify-row .hero-notify-form input {
    width: 180px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.2s;
}

.hero-notify-row .hero-notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hero-notify-row .hero-notify-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.hero-notify-row .hero-notify-form button {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.hero-notify-row .hero-notify-form button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-notify-row .hero-notify-success {
    padding: 12px 18px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 44px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: inherit;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-demo-btn:hover::before {
    left: 100%;
}

.hero-demo-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.5);
}

.hero-demo-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.hero-demo-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.hero-demo-btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.hero-demo-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    width: 100%;
    max-width: fit-content;
}

/* Hero Notify Left Section */
.hero-notify-left {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.4s both;
    text-align: left;
}

.hero-notify-left .hero-notify-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-align: left;
}

.hero-notify-left .hero-notify-form {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.hero-notify-left .hero-notify-form input {
    width: 200px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.2s;
}

.hero-notify-left .hero-notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hero-notify-left .hero-notify-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.hero-notify-left .hero-notify-form button {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-notify-left .hero-notify-form button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-notify-left .hero-notify-success {
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Right Side (Animation) */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hero Notify Section */
.hero-notify {
    margin-top: 24px;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-notify-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.hero-notify-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.hero-notify-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.hero-notify-form input {
    width: 200px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.2s;
}

.hero-notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hero-notify-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.hero-notify-form button {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.hero-notify-form button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-notify-privacy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.hero-notify-success {
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1,
    .hero-text .auth-tagline,
    .hero-text .auth-subtitle {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-animation {
        transform: scale(0.9);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

/* Hide mobile scroll indicator elements on desktop */
.scroll-indicator-text,
.scroll-indicator-chevron {
    display: none;
}

/* Scrolling Features Row */
.scrolling-features {
    width: 100%;
    overflow: hidden;
    padding: 48px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
    position: relative;
}

.scrolling-features::before,
.scrolling-features::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.scrolling-features::before {
    left: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 1) 0%, transparent 100%);
}

.scrolling-features::after {
    right: 0;
    background: linear-gradient(270deg, rgba(26, 26, 46, 1) 0%, transparent 100%);
}

.scrolling-track {
    display: flex;
    gap: 20px;
    animation: scrollFeatures 60s linear infinite;
    width: max-content;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.1rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
}

/* Hero Animation Styles */
.hero-animation {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    overflow: visible;
}

/* Orbital Rings */
.orbit-ring {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: pulseRing 4s ease-in-out infinite, ringRotate 60s linear infinite;
    border-width: 2px;
    border-color: rgba(99, 102, 241, 0.2);
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: pulseRing 4s ease-in-out infinite 0.5s, ringRotateReverse 80s linear infinite;
    border-style: dashed;
    border-color: rgba(99, 102, 241, 0.15);
    border-width: 2px;
}

.ring-3 {
    width: 380px;
    height: 380px;
    animation: pulseRing 4s ease-in-out infinite 1s, ringRotate 100s linear infinite;
    border-color: rgba(236, 72, 153, 0.15);
    border-width: 2px;
}

.rocket {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 135px;
    animation: rocketFloat 3s ease-in-out infinite, rocketGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    z-index: 10;
    overflow: visible;
}

.rocket svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.flame {
    animation: flameFlicker 0.15s ease-in-out infinite alternate;
    transform-origin: center top;
}

.flame-inner {
    animation: flameFlicker 0.1s ease-in-out infinite alternate-reverse;
    transform-origin: center top;
}

/* Orbiting Widgets */
.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
}

.orbit-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 8;
    animation: widgetGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.orbit-item:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 50px rgba(99, 102, 241, 0.6);
    border-color: rgba(99, 102, 241, 0.5);
}

.widget-icon {
    font-size: 1.3rem;
}

.widget-label {
    display: none;
}

.widget-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 14px;
    text-align: center;
}

/* Orbit positions and animations */
.orbit-1 {
    animation: orbit1 30s linear infinite;
}
.orbit-1 .orbit-item {
    transform: translate(-50%, -50%) translateX(150px) translateY(-40px);
}

.orbit-2 {
    animation: orbit2 36s linear infinite reverse;
}
.orbit-2 .orbit-item {
    transform: translate(-50%, -50%) translateX(-140px) translateY(30px);
}

.orbit-3 {
    animation: orbit3 42s linear infinite;
}
.orbit-3 .orbit-item {
    transform: translate(-50%, -50%) translateX(100px) translateY(130px);
}

.orbit-4 {
    animation: orbit4 34s linear infinite reverse;
}
.orbit-4 .orbit-item {
    transform: translate(-50%, -50%) translateX(-160px) translateY(-80px);
}

.orbit-5 {
    animation: orbit5 38s linear infinite;
}
.orbit-5 .orbit-item {
    transform: translate(-50%, -50%) translateX(170px) translateY(60px);
}

.orbit-6 {
    animation: orbit6 32s linear infinite reverse;
}
.orbit-6 .orbit-item {
    transform: translate(-50%, -50%) translateX(-80px) translateY(140px);
}

/* Counter-rotate widget contents to keep them upright */
.orbit-1 .orbit-item { animation: counterRotate1 30s linear infinite; }
.orbit-2 .orbit-item { animation: counterRotate2 36s linear infinite reverse; }
.orbit-3 .orbit-item { animation: counterRotate3 42s linear infinite; }
.orbit-4 .orbit-item { animation: counterRotate4 34s linear infinite reverse; }
.orbit-5 .orbit-item { animation: counterRotate5 38s linear infinite; }
.orbit-6 .orbit-item { animation: counterRotate6 32s linear infinite reverse; }

.orbit-1 .orbit-item { --tx: 150px; --ty: -40px; }
.orbit-2 .orbit-item { --tx: -140px; --ty: 30px; }
.orbit-3 .orbit-item { --tx: 100px; --ty: 130px; }
.orbit-4 .orbit-item { --tx: -160px; --ty: -80px; }
.orbit-5 .orbit-item { --tx: 170px; --ty: 60px; }
.orbit-6 .orbit-item { --tx: -80px; --ty: 140px; }

/* Floating Kanban Task Cards */
.floating-task {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 15;
    transition: all 0.3s ease;
}

.floating-task:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
}

.task-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    font-weight: bold;
}

.task-check.pending {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.task-1 {
    top: 5px;
    left: 10px;
    animation: magneticFloat 4s ease-in-out infinite, taskCardGlow 3s ease-in-out infinite;
}

.task-2 {
    top: 45px;
    right: 0px;
    animation: magneticFloat 4.5s ease-in-out infinite 0.5s, taskCardGlow 3s ease-in-out infinite 1s;
}

.task-3 {
    bottom: 50px;
    left: 20px;
    animation: magneticFloat 5s ease-in-out infinite 1s, taskCardGlow 3s ease-in-out infinite 2s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.data-line {
    stroke-dasharray: 8 4;
    animation: dataFlow 2s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.6s; }
.line-3 { animation-delay: 1.2s; }

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249, 115, 22, 0.8);
    border-radius: 50%;
    animation: particleRise 3s ease-out infinite;
}

.p1 { left: 48%; bottom: 30%; animation-delay: 0s; --x-offset: -10px; }
.p2 { left: 50%; bottom: 28%; animation-delay: 0.5s; --x-offset: 5px; }
.p3 { left: 52%; bottom: 32%; animation-delay: 1s; --x-offset: 15px; }
.p4 { left: 49%; bottom: 29%; animation-delay: 1.5s; --x-offset: -8px; }
.p5 { left: 51%; bottom: 31%; animation-delay: 2s; --x-offset: 12px; }

/* Decorative Stars */
.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    animation: starTwinkle 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(99, 102, 241, 0.4);
}

.s1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 10px;
}

.s2 {
    top: 25%;
    right: 12%;
    animation-delay: 0.5s;
    font-size: 14px;
}

.s3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
    font-size: 11px;
}

.s4 {
    bottom: 35%;
    right: 8%;
    animation-delay: 1.5s;
    font-size: 13px;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease, breathe 3s ease-in-out infinite 1s;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.auth-container h1 {
    font-size: 5.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -4px;
    animation: fadeInUp 0.8s ease 0.1s both;
    line-height: 1.05;
    position: relative;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.auth-tagline {
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    margin-bottom: 28px;
    margin-top: 16px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 580px;
    line-height: 1.8;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.auth-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.auth-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.auth-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.auth-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.auth-feature:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.auth-feature:hover::before,
.auth-feature:hover::after {
    opacity: 1;
}

.auth-feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.auth-feature-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.auth-feature-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.65;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease 0.4s both;
}

.auth-actions.beta-testers {
    margin-top: 48px;
    padding: 32px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.beta-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 14px;
    text-align: center;
}

/* Features Section */
.features-section {
    max-width: 1000px;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 70px;
    letter-spacing: -1.5px;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.feature-category {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: inline-block;
    padding-left: 24px;
    padding-right: 24px;
}

.title-good {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.4));
    animation: titleGradientShift 4s ease-in-out infinite;
}

.title-at {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
}

.title-scale {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.4));
    animation: titleGradientShift2 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.auth-container p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.google-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.google-btn:active {
    transform: translateY(0);
}

.google-btn svg {
    width: 18px;
    height: 18px;
}

.demo-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-divider::before,
.demo-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    max-width: 100px;
}

.demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(99, 102, 241, 0.25) 100%);
    color: #c4b5fd;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(99, 102, 241, 0.4) 100%);
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(139, 92, 246, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    color: #e9d5ff;
}

.demo-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.demo-hint {
    margin-top: 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Waitlist Section */
.auth-waitlist {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px 56px;
    max-width: 540px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(24px);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.auth-waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.4) 50%, transparent 90%);
}

.auth-waitlist::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.auth-waitlist .demo-divider {
    margin: 32px 0 28px 0;
    width: 100%;
}

.auth-waitlist .demo-btn {
    width: 100%;
    max-width: 320px;
}

.auth-waitlist .demo-hint {
    margin-top: 14px;
}

.waitlist-header {
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.waitlist-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.waitlist-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.waitlist-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.waitlist-input-group {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.waitlist-input-group input {
    flex: 1;
    padding: 18px 22px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.waitlist-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.waitlist-input-group input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.7);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.waitlist-btn {
    padding: 18px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.waitlist-btn:hover::before {
    left: 100%;
}

.waitlist-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.waitlist-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.waitlist-privacy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin: 0;
}

.waitlist-success {
    padding: 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.waitlist-success .success-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    animation: celebrateIcon 0.6s ease;
}

.waitlist-success p {
    color: #34d399;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Auth Footer */
.auth-footer {
    margin-top: 48px;
    text-align: center;
    animation: fadeIn 1s ease 0.8s both;
}

.auth-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
}

.auth-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 4px;
}

.auth-credit {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 700px) {
    .auth-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .auth-container h1 {
        font-size: 2.5rem;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .auth-stats {
        gap: 32px;
    }

    .auth-waitlist {
        padding: 24px 20px;
    }
}

.demo-badge {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

/* Energy Pulses */
.energy-pulse {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    animation: energyPulse 3s ease-out infinite;
    pointer-events: none;
}

.pulse-1 {
    animation-delay: 0s;
}

.pulse-2 {
    animation-delay: 1s;
}

.pulse-3 {
    animation-delay: 2s;
}

/* Sparkles */
.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 20;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.sp-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
    font-size: 12px;
}

.sp-2 {
    top: 15%;
    right: 30%;
    animation-delay: 0.4s;
    font-size: 16px;
}

.sp-3 {
    top: 50%;
    left: 10%;
    animation-delay: 0.8s;
    font-size: 10px;
}

.sp-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.2s;
    font-size: 14px;
}

.sp-5 {
    bottom: 35%;
    left: 20%;
    animation-delay: 1.6s;
    font-size: 11px;
}

/* =============================================
   MOBILE RESPONSIVE STYLES FOR HERO SECTION
   ============================================= */

/* Tablet and small laptop breakpoint */
@media (max-width: 768px) {
    .auth-hero {
        padding: 40px 16px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
    }

    .hero-right {
        order: 2;
    }

    .auth-container h1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .auth-tagline {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .auth-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-cta {
        margin-top: 32px;
    }

    .hero-demo-btn {
        padding: 16px 36px;
        font-size: 1.05rem;
    }

    .header-login {
        top: 16px;
        right: 16px;
    }

    .header-login .google-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Scale down hero animation */
    .hero-animation {
        width: 320px;
        height: 320px;
        transform: scale(0.85);
    }

    /* Scale orbit positions */
    .orbit-1 .orbit-item { --tx: 120px; --ty: -30px; }
    .orbit-2 .orbit-item { --tx: -110px; --ty: 25px; }
    .orbit-3 .orbit-item { --tx: 80px; --ty: 100px; }
    .orbit-4 .orbit-item { --tx: -130px; --ty: -60px; }
    .orbit-5 .orbit-item { --tx: 140px; --ty: 50px; }
    .orbit-6 .orbit-item { --tx: -60px; --ty: 110px; }

    .orbit-item {
        width: 42px;
        height: 42px;
    }

    .widget-icon {
        font-size: 1.1rem;
    }

    .floating-task {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .ring-1 { width: 160px; height: 160px; }
    .ring-2 { width: 240px; height: 240px; }
    .ring-3 { width: 300px; height: 300px; }

    .hero-notify-row {
        margin-top: 32px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-notify-row .hero-notify-form {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-notify-row .hero-notify-form input {
        width: 100%;
    }

    .hero-notify-row .hero-notify-form button {
        width: 100%;
    }
}

/* Mobile device breakpoint */
@media (max-width: 600px) {
    .auth-hero {
        padding: 30px 12px;
    }

    .hero-content {
        gap: 30px;
        padding: 0 8px;
    }

    .auth-container h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .auth-tagline {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .auth-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .auth-badge {
        padding: 10px 18px;
        font-size: 0.8rem;
        margin-bottom: 24px;
    }

    .hero-cta {
        margin-top: 28px;
    }

    .hero-demo-btn {
        padding: 14px 32px;
        font-size: 1rem;
        border-radius: 14px;
    }

    .header-login {
        top: 12px;
        right: 12px;
    }

    .header-login .google-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .header-login .google-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Scale down hero animation further */
    .hero-animation {
        width: 280px;
        height: 280px;
        transform: scale(0.75);
    }

    /* Reduce orbit positions for smaller screens */
    .orbit-1 .orbit-item { --tx: 100px; --ty: -25px; }
    .orbit-2 .orbit-item { --tx: -95px; --ty: 20px; }
    .orbit-3 .orbit-item { --tx: 65px; --ty: 85px; }
    .orbit-4 .orbit-item { --tx: -110px; --ty: -50px; }
    .orbit-5 .orbit-item { --tx: 115px; --ty: 40px; }
    .orbit-6 .orbit-item { --tx: -50px; --ty: 95px; }

    .orbit-item {
        width: 38px;
        height: 38px;
    }

    .widget-icon {
        font-size: 1rem;
    }

    .widget-badge {
        font-size: 0.5rem;
        padding: 1px 4px;
    }

    .floating-task {
        padding: 6px 10px;
        font-size: 0.7rem;
        border-radius: 10px;
    }

    .task-check {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .ring-1 { width: 130px; height: 130px; }
    .ring-2 { width: 200px; height: 200px; }
    .ring-3 { width: 250px; height: 250px; }

    /* Hide some decorative elements */
    .sparkle.sp-3,
    .sparkle.sp-5,
    .star.s3 {
        display: none;
    }

    .rocket {
        width: 80px;
        height: 120px;
    }

    .energy-pulse {
        width: 70px;
        height: 70px;
    }

    .scroll-indicator {
        bottom: 24px;
        width: 22px;
        height: 36px;
    }
}

/* Small mobile screen breakpoint */
@media (max-width: 480px) {
    .auth-hero {
        padding: 24px 10px;
    }

    .hero-content {
        gap: 24px;
        padding: 0 4px;
    }

    .auth-container h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }

    .auth-tagline {
        font-size: 1rem;
        letter-spacing: 0.3px;
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .auth-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .auth-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        margin-top: 24px;
    }

    .hero-demo-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    /* Scale down hero animation for very small screens */
    .hero-animation {
        width: 240px;
        height: 240px;
        transform: scale(0.65);
        margin: -20px 0;
    }

    /* Further reduce orbit positions */
    .orbit-1 .orbit-item { --tx: 80px; --ty: -20px; }
    .orbit-2 .orbit-item { --tx: -75px; --ty: 15px; }
    .orbit-3 .orbit-item { --tx: 50px; --ty: 70px; }
    .orbit-4 .orbit-item { --tx: -90px; --ty: -40px; }
    .orbit-5 .orbit-item { --tx: 95px; --ty: 35px; }
    .orbit-6 .orbit-item { --tx: -40px; --ty: 75px; }

    .orbit-item {
        width: 34px;
        height: 34px;
    }

    .widget-icon {
        font-size: 0.9rem;
    }

    /* Hide more decorative elements on very small screens */
    .floating-task.task-2,
    .floating-task.task-3 {
        display: none;
    }

    .sparkle.sp-2,
    .sparkle.sp-4,
    .star.s2,
    .star.s4 {
        display: none;
    }

    .particle {
        display: none;
    }

    .energy-pulse.pulse-2,
    .energy-pulse.pulse-3 {
        display: none;
    }

    .ring-1 { width: 100px; height: 100px; }
    .ring-2 { width: 160px; height: 160px; }
    .ring-3 { width: 200px; height: 200px; }

    .rocket {
        width: 70px;
        height: 105px;
    }

    .energy-pulse {
        width: 50px;
        height: 50px;
    }

    .hero-notify-row {
        margin-top: 24px;
    }

    .hero-notify-row .hero-notify-form input {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .hero-notify-row .hero-notify-form button {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    /* Mobile scroll indicator - show text and chevron instead of mouse wheel */
    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: auto;
        height: auto;
        border: none;
        border-radius: 0;
        padding: 8px 16px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 20px;
    }

    .scroll-indicator::before {
        display: none;
    }

    .scroll-indicator-text {
        display: block;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .scroll-indicator-chevron {
        display: block;
        width: 20px;
        height: 20px;
        color: rgba(255, 255, 255, 0.8);
        animation: bounceChevron 1.5s ease-in-out infinite;
    }

    @keyframes bounceChevron {
        0%, 100% { transform: translateY(0); opacity: 0.6; }
        50% { transform: translateY(6px); opacity: 1; }
    }
}

/* Extra small screens (very old/small phones) */
@media (max-width: 360px) {
    .auth-container h1 {
        font-size: 1.9rem;
    }

    .auth-tagline {
        font-size: 0.9rem;
    }

    .hero-animation {
        transform: scale(0.55);
        margin: -30px 0;
    }

    .hero-demo-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .floating-task.task-1 {
        display: none;
    }

    .ring-3 {
        display: none;
    }
}

/* =============================================
   LANDING PAGE SECTIONS
   ============================================= */

/* Social Proof Section */
.social-proof-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.social-proof-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.waitlist-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: fadeInUp 0.6s ease;
}

.counter-icon {
    font-size: 1.3rem;
}

.counter-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.counter-text strong {
    color: #a78bfa;
    font-weight: 700;
}

.integration-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.integration-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.integration-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.integration-badge svg {
    opacity: 0.9;
}

.integration-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Features Showcase Section */
.features-showcase {
    width: 100%;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.features-showcase-content {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.6s ease;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Dashboard Preview Section */
.preview-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.preview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.preview-mockup {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.mockup-browser {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28c840;
}

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 8px;
    margin-right: 80px;
}

.mockup-content {
    padding: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* App Header Mockup - matches real app header */
.mockup-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-app-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-menu-btn {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mockup-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-clock {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.mockup-weather-mini {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.mockup-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Kanban Board Mockup - matches real app's 3-column layout */
.mockup-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    flex: 1;
}

.mockup-column {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot.todo {
    background: #78b4ff;
}

.mockup-dot.inprogress {
    background: #ff9500;
}

.mockup-dot.done {
    background: #34c759;
}

.mockup-count {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
}

.mockup-task-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s;
}

.mockup-task-card.active {
    border-color: rgba(255, 149, 0, 0.3);
    background: rgba(255, 149, 0, 0.08);
}

.mockup-task-card.completed {
    opacity: 0.6;
}

.mockup-task-card.completed span:last-child {
    text-decoration: line-through;
}

.mockup-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: white;
    flex-shrink: 0;
}

.mockup-checkbox.checked {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
}

/* Side Widgets */
.mockup-side-widgets {
    display: flex;
    gap: 12px;
}

.mockup-mini-widget {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.mockup-widget-icon {
    font-size: 1.2rem;
}

.mockup-widget-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-widget-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-widget-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Legacy mockup styles (kept for compatibility) */
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mockup-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.mockup-widget-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
}

.mockup-event,
.mockup-task,
.mockup-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-event:last-child,
.mockup-task:last-child,
.mockup-email:last-child {
    border-bottom: none;
}

.mockup-task.done {
    text-decoration: line-through;
    opacity: 0.5;
}

.mockup-task.done::before {
    content: '✓ ';
    color: #10b981;
}

.mockup-temp {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.mockup-conditions {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Trust Section */
.trust-section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: fadeInUp 0.6s ease;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.08) 50%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.final-cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.final-cta-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.final-cta-form input {
    flex: 1;
    max-width: 300px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.final-cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.final-cta-form input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.final-cta-form button {
    padding: 16px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.final-cta-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.final-cta-success {
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    color: #34d399;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.final-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Landing Footer */
.landing-footer {
    width: 100%;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   LANDING PAGE MOBILE RESPONSIVE
   ============================================= */

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

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 48px 16px;
    }

    .waitlist-counter {
        padding: 14px 20px;
    }

    .counter-text {
        font-size: 0.9rem;
    }

    .features-showcase {
        padding: 80px 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .preview-section {
        padding: 80px 16px;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
    }

    .mockup-kanban {
        grid-template-columns: 1fr;
    }

    .mockup-app-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .mockup-header-left,
    .mockup-header-right {
        justify-content: center;
    }

    .mockup-side-widgets {
        flex-direction: column;
    }

    .trust-section {
        padding: 60px 16px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .final-cta-section {
        padding: 80px 16px;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-form {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-form input {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-proof-content {
        gap: 24px;
    }

    .integration-logos {
        gap: 10px;
    }

    .integration-badge {
        padding: 8px 12px;
    }

    .integration-badge span {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-card-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .mockup-content {
        padding: 16px;
    }

    .mockup-url {
        display: none;
    }

    .trust-badge {
        padding: 20px 16px;
    }

    .trust-icon {
        font-size: 1.5rem;
    }

    .final-cta-content h2 {
        font-size: 1.5rem;
    }

    .final-cta-content > p {
        font-size: 0.95rem;
    }

    .final-cta-form input,
    .final-cta-form button {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
}
